#############################################################################
#                                                                           #
# The make process relies on the creation of DLL and library response file  #
# creation.  To control the location of object modules the following should #
# be defined:                                                               #
#                                                                           #
#     IMPOBJS - A list of object modules that should appear in the DLL      #
#               import library.                                             #
#                                                                           #
#        OBJS - If a DLL is build, this is a list of the object modules     #
#               that are linked into the DLL.  If building a library, this  #
#               is the list of object modules that goes into the library.   #
#                                                                           #
# The building of miscellaneous object modules and libraries is controlled  #
# by the list of files in the MISC variable.                                #
#                                                                           #
# $Revision: 9.8 $                                                                #
#                                                                           #
#############################################################################

#############################################################################
# Build the object module lists.                                            #
#############################################################################
!if $d(MINIRTL)
OBJS =               \
        _wherexy.obj \
        cgets.obj    \
        clreol.obj   \
        clrscr.obj   \
        color.obj    \
        cprintf.obj  \
        cvprintf.obj \
        cputn.obj    \
        cputs.obj    \
        crtinit.obj  \
        cscanf.obj   \
        cvscanf.obj  \
        cursor.obj   \
        getch.obj    \
        getche.obj   \
        getpass.obj  \
        gotoxy.obj   \
        gptext.obj   \
        insline.obj  \
        kbhit.obj    \
        movecurs.obj \
        movetext.obj \
        putch.obj    \
        scroll.obj   \
        textmode.obj \
        validxy.obj  \
        vidinfo.obj  \
        vram.obj     \
        wherexy.obj  \
        window.obj   \
        wscroll.obj
!elif $d(DINKUMWARE)
OBJS =               \
        _wherexy.obj \
        cgets.obj    \
        clreol.obj   \
        clrscr.obj   \
        color.obj    \
        cprintf.obj  \
        cvprintf.obj \
        cputn.obj    \
        cputs.obj    \
        crtinit.obj  \
        cscanf.obj   \
        cvscanf.obj  \
        cursor.obj   \
        getch.obj    \
        getche.obj   \
        getpass.obj  \
        gotoxy.obj   \
        gptext.obj   \
        insline.obj  \
        kbhit.obj    \
        movecurs.obj \
        movetext.obj \
        putch.obj    \
        scroll.obj   \
        textmode.obj \
        validxy.obj  \
        vidinfo.obj  \
        vram.obj     \
        wherexy.obj  \
        window.obj   \
        wscroll.obj
!else
OBJS =               \
        _wherexy.obj \
        cgets.obj    \
        clreol.obj   \
        clrscr.obj   \
        color.obj    \
        constrea.obj \
        cprintf.obj  \
        cvprintf.obj \
        cputn.obj    \
        cputs.obj    \
        crtinit.obj  \
        cscanf.obj   \
        cvscanf.obj  \
        cursor.obj   \
        getch.obj    \
        getche.obj   \
        getpass.obj  \
        gotoxy.obj   \
        gptext.obj   \
        insline.obj  \
        kbhit.obj    \
        movecurs.obj \
        movetext.obj \
        putch.obj    \
        scroll.obj   \
        textmode.obj \
        validxy.obj  \
        vidinfo.obj  \
        vram.obj     \
        wherexy.obj  \
        window.obj   \
        wscroll.obj
!endif

#############################################################################
# Configure the environment appropriately.                                  #
#############################################################################
!include rules.mak

